home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 September / CHIP Eylül 1998.iso / Slackwar / contrib / a.out-compilers / aout-tools-src / SlackBuild < prev    next >
Text File  |  1997-04-01  |  2KB  |  68 lines

  1. #!/bin/sh
  2. # Set initial variables:
  3. CWD=`pwd`
  4. if [ "$TMP" = "" ]; then
  5.   TMP=/tmp
  6. fi
  7. PKG=$TMP/package-aoutools
  8. SRC=/devel/manpagesrc
  9. INFO=/devel/info-pages/usr/info
  10. TEX=/devel/texinfo-docs
  11.  
  12. if [ ! -d $TMP ]; then
  13.   mkdir -p $TMP # location to build the source
  14. fi
  15. if [ ! -d $PKG ]; then
  16.   mkdir -p $PKG # place for the package to be built
  17. fi
  18.  
  19. # Explode the package framework:
  20. cd $PKG
  21. explodepkg $CWD/_aoutools.tar.gz
  22.  
  23. # Function to handle manpage source:
  24. man2gz () { # $1 is source page name, $2 is target name for preformatted
  25.             # output (full path && name) and $3 is the same, but for the
  26.             # source.
  27.   mkdir -p `dirname $2`
  28.   groff -Tascii -mandoc $1 | gzip -9c > $2
  29.   if [ ! "$3" = "" ]; then
  30.     mkdir -p `dirname $3`
  31.     cat $1 > $3 
  32.   fi 
  33. }
  34.  
  35. echo "+============+"
  36. echo "| tools-2.17 |"
  37. echo "+============+"
  38. cd $TMP
  39. tar xzvf $CWD/tools-2.17.tar.gz
  40. cd tools-2.17/tools
  41. make CFLAGS=-O2 LDFLAGS=-s
  42. cat getsize > $PKG/usr/bin/getsize
  43. cat jumpas > $PKG/usr/bin/jumpas
  44. cat mkcompat > $PKG/usr/bin/mkcompat
  45. cat mkimage > $PKG/usr/bin/mkimage
  46. cat mkstubs > $PKG/usr/bin/mkstubs
  47. cat verify > $PKG/usr/bin/verify-shlib
  48.  
  49. # Build the package:
  50. cd $PKG
  51. tar czvf $TMP/aoutools.tgz .
  52.  
  53. # Warn of zero-length files:
  54. for file in `find . -type f -print` ; do
  55.  if [ "`filesize $file`" = "0" ]; then
  56.   echo "WARNING: zero length file $file"
  57.  fi
  58.  if [ "`filesize $file`" = "20" ]; then
  59.   echo "WARNING: possible empty gzipped file $file"
  60.  fi
  61. done
  62.  
  63. # Clean up the extra stuff:
  64. if [ "$1" = "--cleanup" ]; then
  65.   rm -rf $TMP/tools-2.17
  66.   rm -rf $PKG
  67. fi
  68.